home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
else.bas
< prev
next >
Wrap
BASIC Source File
|
1998-03-09
|
189b
|
16 lines
CLS
While True
Print "Type in a number."
Input number
If number > 5 Then
Print "Your number is greater than five!"
Else Print "Your number is less than or equal to 5!"
EndIf
Wend
End